home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Interfaces&Libraries / Universal / Interfaces / PInterfaces / Packages.p < prev    next >
Encoding:
Text File  |  1998-08-17  |  1.5 KB  |  72 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        Packages.p
  3.  
  4.      Contains:    Package Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.2
  8.  
  9.      Copyright:    © 1985-1993, 1995, 1997-1998 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. }
  17. {$IFC UNDEFINED UsingIncludes}
  18. {$SETC UsingIncludes := 0}
  19. {$ENDC}
  20.  
  21. {$IFC NOT UsingIncludes}
  22.  UNIT Packages;
  23.  INTERFACE
  24. {$ENDC}
  25.  
  26. {$IFC UNDEFINED __PACKAGES__}
  27. {$SETC __PACKAGES__ := 1}
  28.  
  29. {$I+}
  30. {$SETC PackagesIncludes := UsingIncludes}
  31. {$SETC UsingIncludes := 1}
  32.  
  33. {$IFC UNDEFINED __MACTYPES__}
  34. {$I MacTypes.p}
  35. {$ENDC}
  36.  
  37.  
  38. {$PUSH}
  39. {$ALIGN MAC68K}
  40. {$LibExport+}
  41.  
  42.  
  43. CONST
  44.     listMgr                        = 0;                            {  list manager  }
  45.     dskInit                        = 2;                            {  Disk Initializaton  }
  46.     stdFile                        = 3;                            {  Standard File  }
  47.     flPoint                        = 4;                            {  Floating-Point Arithmetic  }
  48.     trFunc                        = 5;                            {  Transcendental Functions  }
  49.     intUtil                        = 6;                            {  International Utilities  }
  50.     bdConv                        = 7;                            {  Binary/Decimal Conversion  }
  51.     editionMgr                    = 11;                            {  Edition Manager  }
  52.  
  53. PROCEDURE InitPack(packID: INTEGER);
  54.     {$IFC TARGET_OS_MAC AND TARGET_CPU_68K AND NOT TARGET_RT_MAC_CFM}
  55.     INLINE $A9E5;
  56.     {$ENDC}
  57. PROCEDURE InitAllPacks;
  58.     {$IFC TARGET_OS_MAC AND TARGET_CPU_68K AND NOT TARGET_RT_MAC_CFM}
  59.     INLINE $A9E6;
  60.     {$ENDC}
  61.  
  62. {$ALIGN RESET}
  63. {$POP}
  64.  
  65. {$SETC UsingIncludes := PackagesIncludes}
  66.  
  67. {$ENDC} {__PACKAGES__}
  68.  
  69. {$IFC NOT UsingIncludes}
  70.  END.
  71. {$ENDC}
  72.